Object

JiraTicket

A Jira ticket that is linked to an issue found by a scan.

Fields

external_key(): String
The Jira issue key.
id(): ID!
A unique identifier for the Jira ticket.
issue_type(): String
Deprecated: Use the ticket_type field instead
The name of the ticket type in Jira that this ticket belongs to. Jira calls this "Issue Type" but we use "ticket" to avoid confusion with Burp Scanner issues.
priority(): String
The priority of the Jira ticket.
project(): String
The Jira project to which this ticket belongs.
status(): String
The current status of the Jira ticket.
summary(): String
A brief description of the issue.
ticket_type(): String
The name of the ticket type in Jira that this ticket belongs to. Jira calls this "Issue Type" but we use "ticket" to avoid confusion with Burp Scanner issues.

Example

Query
query GetJiraTickets($scanId: ID!, $serialNumber: ID!) {
  issue (scan_id: $scanId, serial_number: $serialNumber) {
    tickets {
        jira_ticket {
            id
            external_key
            ticket_type
            summary
            project
            status
            priority
        }
        link_url
        link_id
        date_added
    }
  }
}
Variables
{
  "scanId": "2",
  "serialNumber": "314276827364273645"
}
Result
{
    "data": {
        "issue": {
            "tickets": [
                {
                    "jira_ticket": {
                        "id": null,
                        "external_key": null,
                        "ticket_type": null,
                        "summary": null,
                        "project": null,
                        "status": null,
                        "priority": null
                    },
                    "link_url": null,
                    "link_id": null,
                    "date_added": null
                }
            ]
        }
    }
}